home *** CD-ROM | disk | FTP | other *** search
/ Night Owl 6 / Night Owl's Shareware - PDSI-006 - Night Owl Corp (1990).iso / 008a / fglqbx10.zip / 11-02.BAS < prev    next >
BASIC Source File  |  1991-06-07  |  498b  |  32 lines

  1. REM $INCLUDE: 'fastgraf.bi'
  2.  
  3. DEFINT A-Z
  4.  
  5. Status = SETMEM(-1*(64000+16))
  6.  
  7. NewMode = FGbestmode(320,200,2)
  8. IF NewMode < 0 OR NewMode = 12 THEN
  9.    PRINT "This program requires a 320 x 200 color graphics mode."
  10.    STOP
  11. END IF
  12. OldMode = FGgetmode
  13. FGsetmode NewMode
  14. Status = FGallocate(1)
  15. FGsethpage 1
  16.  
  17. FGsetcolor 2
  18. FGrect 0, 319, 0, 199
  19. FGsetpage 1
  20. FGsetcolor 1
  21. FGrect 0, 319, 0, 199
  22. FGwaitkey
  23.  
  24. FGfadein 0
  25. FGwaitkey
  26.  
  27. Status = FGfreepage(1)
  28. FGsetmode OldMode
  29. FGreset
  30.  
  31. END
  32.